Model Design
Develop the virtual model, including database tables and columns, and generate CRUD APIs from it. Upload DDL schemas and use them while creating connection to generate queries using quickintegrate.
Entity Design
Project Creation (optional)
- Open: Manage / Projects
- Click on CREATE button.
- Provide name and description.
- Click on create.
Configuration
- Select project from dropdown
- Click on + button.
- Provide entity name and fields required information.
- Click on SAVE. Entity will be created.
- Check the checkbox in action column for the field that you want to generate endpoints with. By default primary key is checked.
- Feel free to change the basepath and click on Show API.
- Now list of endpoints will be generated. You can remove one or more endpoints that are not required.
- Click on Create API. Services corresponding to the table will be generated.
- After service creation you will be redirected to Functionality API page and you will have access to a comprehensive list of all the end-to-end services outlined in the model design.
note
- If the endpoint(s) or service(s) already exists in the selected project then text box will appear instead of plain text. This allows you to modify duplicate URLs or service names.
- This will create simple services from given list with a APIRESPPONSE step in it that returns a message
{ status: success }
Sample Configuration
REST Trigger

API Response

DDL schema
Schema Restriction
It must only contain table statements. Like below:
CREATE TABLE `order_query` (
`order_id` INT AUTO_INCREMENT PRIMARY KEY, -- Unique ID for each order
`customer_name` VARCHAR(100), -- Customer's name
`order_date` DATE, -- Date of the order
`total_amount` DECIMAL(10, 2) -- Total amount for the order
);
If statements like use schema
are present it will raise error and Query generation will not work.